home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- ECHO.
- IF "%1"=="HELP" GOTO HELP
- IF "%1"=="help" GOTO HELP
- IF "%1"=="" GOTO ERROR_COM
- IF "%2"=="" GOTO ERROR_DIAL
- IF "%2"=="0" GOTO ANSWER
- Echo +-----------------+
- Echo + Doom Load v1.oo +
- Echo + By WildStar +
- Echo + .-=UNITY=-. +
- Echo +-----------------+
- Echo.
- Echo Loading DOOM v1.2 on Com%1 , dialing %2 ...
- REM INITS THE MODEM TO 9600 / NO COMPRESSION / NO ERROR CONTROL - NEEDED!
- ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N6 &K0 &M0 > COM%1
- REM LOADS .-./- DOOM v1.2 Reg -\.-.
- SERSETUP -COM%1 -DIAL %2 %3 %4
- REM RESETS THE MODEM 0 - 21.6k / COMPRESSION / ERROR CONTROL
- ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N0 &K1 &M4 > COM%1
- GOTO END
-
- :ANSWER
- Echo +-----------------+
- Echo + Doom Load v1.oo +
- Echo + By WildStar +
- Echo + .-=UNITY=-. +
- Echo +-----------------+
- Echo.
- Echo Loading DOOM v1.2 on Com%1 , waiting for a caller ...
- REM INITS THE MODEM TO 9600 / NO COMPRESSION / NO ERROR CONTROL - NEEDED!
- ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N6 &K0 &M0 > COM%1
- REM LOADS .-./- DOOM v1.2 Reg -\.-.
- SERSETUP -COM%1 -ANSWER %3 %4
- REM RESETS THE MODEM 0 - 21.6k / COMPRESSION / ERROR CONTROL
- ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N0 &K1 &M4 > COM%1
- GOTO END
-
- :ERROR_COM
- Echo +-----------------+
- Echo + Doom Load v1.oo +
- Echo + By WildStar +
- Echo + .-=UNITY=-. +
- Echo +-----------------+
- Echo.
- Echo Usage of Doom Load
- Echo Ex. DLOAD [comport] [number]
- Echo If you wanted to dial 555-1212 on Com 1 type
- Echo DLOAD 1 5551212
- Echo.
- Echo If you wanted to answer the phone on Com 1 type
- Echo DLOAD 1 0
- Echo.
- Echo ERROR: YOU DIDN'T SPECIFY A COMPORT TO DIAL OUT OR ANSWER ON
- Echo.
- Echo Need More Help type DLOAD HELP
- Echo.
- Echo.
- GOTO END
-
- :ERROR_DIAL
- Echo +-----------------+
- Echo + Doom Load v1.oo +
- Echo + By WildStar +
- Echo + .-=UNITY=-. +
- Echo +-----------------+
- Echo.
- Echo Usage of Doom Load
- Echo Ex. DLOAD [comport] [number]
- Echo If you wanted to dial 555-1212 on Com 1 type
- Echo DLOAD 1 5551212
- Echo.
- Echo If you wanted to answer the phone on Com 1 type
- Echo DLOAD 1 0
- Echo.
- Echo ERROR: YOU DIDN'T SPECIFY A NUMBER TO DIAL
- Echo.
- Echo Need More Help type DLOAD HELP
- Echo.
- Echo.
- GOTO END
-
- :HELP
- Echo +-----------------+
- Echo + Doom Load v1.oo +
- Echo + By WildStar +
- Echo + .-=UNITY=-. +
- Echo +-----------------+
- Echo Not Rights Reserved - (It's only a batch file.. Nothing special,
- Echo BUT IT WORKS!!)
- Echo Is program should work on ALL USRobotics Modems. It's been teseted on
- Echo a 16800 D/S and a 14400 Sportster.
- Echo.
- Echo ---------------------------**TIPS**----------------------------------
- Echo If you still don't get it to work try to make a clean boot - Boot
- Echo with an empty CONFIG.SYS and AUTOEXEC.BAT - If you have MS-DOS 6.0
- Echo and up, press the Left [SHIFT] key when it says Starting MS-DOS ...
- Echo Echo Also make sure you have DLOAD.BAT in the Doom Directory.
- Echo ---------------------------------------------------------------------
- Pause > Nul
- Echo.
- Echo -----------------------**KEYS / SWITCHES**---------------------------
- Echo When you load Doom with DLOAD 1 5551212 it loads in automaticly in
- Echo Coop mode. In this you are a team. You can "SPY" on the other person
- Echo by pressing [F12] and [F12] again to return to your own color. If you
- Echo want to talk to the other person type [T] and type your message.
- Echo Press [ENTER] when you finish the message.
- Echo.
- Echo You can also load Doom in DeathMatch. In which you start on a level
- Echo and you play agains your oponent. The object is not to finish the
- Echo level (Fisnish it when you are bored of it) but to kill your oponent
- Echo as many times as posible. None of the codes work in this mode and
- Echo You can't "SPY" on them either. To load it in this mode type
- Echo DLOAD 1 5551212 -DEATHMATCH . When you play like this the level will
- Echo also be filled with enemies. If you want no enemies type
- Echo DLOAD 1 5551212 -DEATHMATCH -NOMONSTERS
- Echo ---------------------------------------------------------------------
-
- :END
-